home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Introducing the New Way to Shop from Home
/
Iceland.iso
/
pc
/
noqtinternetaccess.dir
/
00317_Script_Go Next Button
< prev
next >
Wrap
Text File
|
2003-03-05
|
864b
|
40 lines
-- DESCRIPTION --
on getBehaviorDescription me
return \
"GO NEXT BUTTON" & RETURN & RETURN & \
"Moves the playback head to the next marker when the user clicks on the sprite." & RETURN & RETURN & \
"PERMITTED MEMBER TYPES:" & RETURN & \
"Graphic members" & RETURN & RETURN & \
"PARAMETERS: None"
end getBehaviorDescription
on getBehaviorTooltip me
return \
"Use with graphic members. " & \
"Moves the playback head to the next marker on mouseUp."
end getBehaviorTooltip
-- HISTORY --
-- 3 November 1998, written for the D7 Behaviors Palette by James Newton
-- 5 January 2000: updated to D8 <km>
on mouseUp me
go #next
end mouseUp
on isOKToAttach (me, aSpriteType, aSpriteNum)
tIsOk = 0
if aSpriteType = #graphic then
tIsOK = 1
end if
return(tIsOK)
end on